home *** CD-ROM | disk | FTP | other *** search
/ Clickx 13 / Clickx 13.iso / pc / start.exe / start.dxr / 00023_urlclickx.ls < prev    next >
Encoding:
Text File  |  2001-04-17  |  384 b   |  19 lines

  1. on mouseWithin me
  2.   global URL
  3.   customCursor = [member("finger"), member("fingerMatte")]
  4.   URL = "http://www.clickx.be/magazine/"
  5.   if URL > 0 then
  6.     set the cursor of sprite the spriteNum of me to customCursor
  7.   else
  8.     set the cursor of sprite the spriteNum of me to 0
  9.   end if
  10.   updateStage()
  11. end
  12.  
  13. on mouseUp me
  14.   global URL
  15.   if URL > 0 then
  16.     gotoNetPage(URL)
  17.   end if
  18. end
  19.